unique items in list c#

81

unique items in list c# -

var uniqueItemsList = yourList.Distinct().ToList();

c# list with only unique items -

If your requirements are to have no duplicates, you should be using a HashSet.
HashSet.Add will return false when the item already exists (if that even matters to you).

Comments

Submit
0 Comments